/* ===== Shared header styles ===== */
.header {
  display: flex;
  justify-content: center;
  background: var(--page-bg, #F7F7F5);
  border-bottom: 1px solid var(--border-soft, rgba(36, 56, 50, 0.12));
  flex-shrink: 0;
}
.header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  padding: 20px;
  box-sizing: border-box;
}
.logo-link {
  display: inline-flex;
  align-items: center;
  width: 170px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-img {
  width: 130px;
  height: auto;
  object-fit: contain;
  display: block;
}
.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav a {
  font-family: var(--font-display, 'Radio Canada Big', system-ui, sans-serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--nav-ink, #243832);
  text-decoration: none;
  white-space: nowrap;
}
.nav a:hover { opacity: 0.75; }
.nav a[aria-current="page"] { font-weight: 700; }
@media (max-width: 640px) {
  .header .inner { padding: 16px; }
  .logo-link { width: 75px; }
  .logo-img {
    width: 75px;
    content: url("./landing/logo-curelink-mobile.png");
  }
  .nav { gap: 14px; }
  .nav a { font-size: 14px; }
}
