/* ==============================================
   # ШАПКА САЙТА
   ============================================== */
.site-header {
  top: 0;
  background: #fff;
  z-index: 1000;
  box-shadow: 0 1px 5px rgba(0,0,0,0.05);
}

.site-header {
  border-bottom: 1px solid #eee;
  box-shadow: 0 2px 4px rgba(0,0,0,0.03);
  padding: 15px 0 0 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.branding {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  font-size: 1.6rem;
  font-weight: bold;
  color: #222;
  text-decoration: none;
  filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.1));
}

.logo img {
  max-height: 200px;
}

.info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.info a {text-decoration: none;}
.site-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #6F4E37;
  font-style: italic;
  letter-spacing: 0.3px;
  opacity: 0.9;
}

.site-description {
  font-size: 1rem;
  color: #545454;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(111, 78, 55, 0.2);
  line-height: 1.5;
  opacity: 0.8;
}

/* ==============================================
   # НАВИГАЦИЯ
   ============================================== */
.main-nav .menu {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.main-nav .menu li a {
  text-decoration: none;
  color: #444;
  font-size: 1rem;
  transition: color 0.2s ease;
}

.main-nav .menu li a:hover {
  color: #734c2f;
}

