.demo-banner {
  text-align: center;
  padding: 10px 16px;
  font-size: .9rem;
  background: #3f2818;
  color: var(--text-light);
}

.site-header {
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  background: transparent;
  backdrop-filter: blur(4px);
  z-index: 20;
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.menu-toggle {
    display: none;
}

.main-nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--text-light);
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff7ec;
  font-weight: 700;
  text-decoration: none;
}

.brand img {
    max-height: 50px;
    width: auto;
}


.brand-mark {
  border: 1px solid var(--brass);
  color: var(--brass);
  padding: 8px 10px;
  letter-spacing: 1px;
}

@media (max-width: 768px) {

    .menu-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 2rem;
        line-height: 1;
        cursor: pointer;
        color: var(--brass);
        position: relative;
    }

    .main-nav {
        display: none;
    }

    .main-nav.open {
        display: flex;
        flex-direction: column;
        gap: 16px;
        position: absolute;
        top: 100%;
        right: 0;
        min-width: 220px;
        padding: 20px;
        background: var(--leather-dark);
        box-shadow: 0 6px 20px rgba(0,0,0,.15);
        z-index: 1000;
    }

    .main-nav.open a {
        text-decoration: none;
        color: var(--brass);
        font-weight: 600;
    }
}
