/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(231, 223, 212, 0.9);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

/* LOGO + BRAND */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.brand-tag {
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin: 0 0 6px;
}

.brand-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
}

/* NAV */
.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  font-size: 14px;
  color: #5d564e;
  font-weight: 500;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--accent);
}

/* ACTIONS */
.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* BUTTONS */
.btn {
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 600;
}

.btn-outline {
  background: #fff;
  color: var(--accent);
  border: 1px solid #cbc2b6;
  border-radius: 999px;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 600;
}