/**
 * site-header.css — ONE canonical header across every surface (landing, auth,
 * learn, blog, app). Light + translucent, warm-paper palette with explicit colors
 * (never theme tokens, which flip in dark mode). No backdrop-filter on this
 * always-visible sticky bar (LM-11) — a high-alpha wash fakes the glass.
 * Loaded LAST so it wins over per-page header rules. 2026-06-21.
 */

.site-top {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 247, 239, 0.93);
  border-bottom: 1px solid rgba(160, 132, 84, 0.18);
  box-shadow: 0 1px 10px rgba(58, 42, 24, 0.06);
  color: #3a2f22;
}

.site-top .site-top-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.7rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: nowrap;
}

.site-top .site-brand {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.01em;
  color: #b5562f;
  text-decoration: none;
  margin-right: auto;
  text-shadow: none;
}

.site-top .site-nav {
  display: flex;
  align-items: center;
  gap: 0.3rem 1.1rem;
  margin-left: auto;
  flex-wrap: nowrap;
}

.site-top .site-nav-link {
  color: #4a3f30;
  opacity: 1;
  font-size: 0.9rem;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding: 0.2rem 0;
  text-shadow: none;
}
.site-top .site-nav-link:hover,
.site-top .site-nav-link-active {
  color: #2c2418;
  border-bottom-color: #c2683f;
}

.site-top .site-nav-cta {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.42rem 1.1rem;
  border: 1px solid #c2683f;
  border-radius: 999px;
  color: #c2683f;
  background: transparent;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.site-top .site-nav-cta:hover,
.site-top .site-nav-cta[data-state="authed"] {
  background: #c2683f;
  color: #fff;
}

.site-top .site-locale {
  display: flex;
  gap: 0.3rem;
  margin-left: 0.5rem;
}
.site-top .site-locale-btn {
  border: 1px solid rgba(90, 74, 52, 0.28);
  background: rgba(255, 255, 255, 0.55);
  color: #5a4a34;
  border-radius: 8px;
  padding: 0.2rem 0.55rem;
  font-size: 0.74rem;
  cursor: pointer;
  text-shadow: none;
}
.site-top .site-locale-btn.is-active {
  background: rgba(194, 104, 63, 0.16);
  border-color: rgba(194, 104, 63, 0.5);
  color: #2c2418;
}

/* Profile chip (signed-in landing) */
.site-top .site-profile-chip { text-decoration: none; display: inline-flex; }
.site-top .site-profile-chip__ring {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #c2683f;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
}

@media (max-width: 560px) {
  .site-top .site-top-inner { padding: 0.6rem 1rem; }
  .site-top .site-brand { font-size: 1.15rem; }
  .site-top .site-nav { gap: 0.2rem 0.7rem; }
}
