.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-42b368e *//* --- Header Layout --- */
.site-header {
  width: 100%;
  position: sticky;
  top: 0;
  background: #FFF5F0; /* Soft pastel base */
  z-index: 1000;
  padding: 1rem 5%;
  border-bottom: 1px solid #EAEAEA;
}

.nav-shell {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* --- Brand --- */
.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--kb-font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  text-transform: uppercase;
  color: var(--kb-color-dark);
}

.brand-mark { width: 32px; color: var(--kb-color-dark); }
.brand-small { font-size: 0.8rem; font-weight: 400; opacity: 0.7; }

/* --- Nav Groups --- */
.nav-group { display: flex; align-items: center; gap: 2rem; }
.nav-link {
  font-family: var(--kb-font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--kb-color-dark);
  transition: color 0.3s ease;
}
.nav-link:hover { color: var(--kb-color-accent); }

/* --- Mobile Toggle --- */
.menu-toggle { display: none; background: none; border: none; cursor: pointer; }
.menu-toggle span { display: block; width: 25px; height: 2px; background: #111; margin: 5px 0; }

/* --- Mobile Responsive --- */
@media (max-width: 991px) {
  .menu-toggle { display: block; }
  .nav-group { display: none; } /* Hidden by default on mobile */
  
  .nav-shell.is-active .nav-group {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #FFF5F0;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  }
}/* End custom CSS */